Tuning the parameters of the regularised discriminant analysis for Eucldiean data.
rda.tune(x, ina, nfolds = 10, gam = seq(0, 1, by = 0.1), del = seq(0, 1, by = 0.1),
ncores = 1, folds = NULL, stratified = TRUE, seed = NULL)
A matrix with the data.
A group indicator variable for the avaiable data.
The number of folds in the cross validation.
A grid of values for the \(\gamma\) parameter as defined in Tsagris et al. (2016).
A grid of values for the \(\delta\) parameter as defined in Tsagris et al. (2016).
The number of cores to use. If more than 1, parallel computing will take place. It is advisable to use it if you have many observations and or many variables, otherwise it will slow down th process.
If you have the list with the folds supply it here. You can also leave it NULL and it will create folds.
Do you want the folds to be created in a stratified way? TRUE or FALSE.
You can specify your own seed number here or leave it NULL.
A list including: If graph is TRUE a plot of a heatmap of the performance s will appear.
An array with the estimate rate of correct classification for every fold. For each of the M matrices, the row values correspond to gam and the columns to the del parameter.
A matrix with the mean estimated rates of correct classification. The row values correspond to gam and the columns to the del parameter.
A matrix with the standard error of the mean estimated rates of correct classification. The row values correspond to gam and the columns to the del parameter.
The estimated rate of correct classification along with the best gam and del parameters.
The time required by the cross-validation procedure.
Cross validation is performed to select the optimal parameters for the regularisded discriminant analysis and also estimate the rate of accuracy.
The covariance matrix of each group is calcualted and then the pooled covariance matrix. The spherical covariance matrix consists of the average of the pooled variances in its diagonal and zeros in the off-diagonal elements. gam is the weight of the pooled covariance matrix and 1-gam is the weight of the spherical covariance matrix, Sa = gam * Sp + (1-gam) * sp. Then it is a compromise between LDA and QDA. del is the weight of Sa and 1-del the weight of each group covariance group. This function is a wrapper for alfa.rda.
Friedman Jerome, Trevor Hastie and Robert Tibshirani (2009). The elements of statistical learning, 2nd edition. Springer, Berlin
Tsagris M., Preston S. and Wood A.T.A. (2016). Improved classification for compositional data using the \(\alpha\)-transformation. Journal of classification, 33(2):243-261. http://arxiv.org/pdf/1106.1451.pdf
# NOT RUN {
mod <- rda.tune(as.matrix(iris[, 1:4]), iris[, 5], gam = seq(0, 1, by = 0.2),
del = seq(0, 1, by = 0.2) )
mod
# }
Run the code above in your browser using DataLab